import pandas as pd
import plotly.express as px
df = pd.read_csv("C:\\Users\\Ealija\\Downloads\\workout_data (1).csv")
fig1 = px.scatter_matrix(df, dimensions=["Duration", "Pulse", "Maxpulse", "Calories"], color="Calories")
fig2 = px.line(df, x="Duration", y="Calories", title="Calories Burned vs. Duration")
fig3 = px.sunburst(df, path=["Duration", "Maxpulse"], values="Calories")
C:\Users\Ealija\anaconda3\lib\site-packages\plotly\express\_core.py:1637: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. C:\Users\Ealija\anaconda3\lib\site-packages\plotly\express\_core.py:1637: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
fig1.show()
fig2.show()
fig3.show()